home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / PROGRAMMING / DESKLIBC / SOURCES.ZIP / DeskLib / !DLSources / Libraries / Coord / c / Convert3 < prev    next >
Text File  |  1993-07-14  |  983b  |  28 lines

  1. /*
  2.     ####             #    #     # #
  3.     #   #            #    #       #          The FreeWare C library for 
  4.     #   #  ##   ###  #  # #     # ###             RISC OS machines
  5.     #   # #  # #     # #  #     # #  #   ___________________________________
  6.     #   # ####  ###  ##   #     # #  #                                      
  7.     #   # #        # # #  #     # #  #    Please refer to the accompanying
  8.     ####   ### ####  #  # ##### # ###    documentation for conditions of use
  9.     ________________________________________________________________________
  10.  
  11.     File:    Coord.Convert3.c
  12.     Author:  Copyright © 1992 Jason Williams
  13.     Version: 1.00 (22 Mar 1992)
  14.     Purpose: Window <--> Screen coordinate conversion routines
  15. */
  16.  
  17.  
  18. #include "DeskLib:Core.h"
  19. #include "DeskLib:Coord.h"
  20. #include "DeskLib:Wimp.h"
  21.  
  22.  
  23. extern void Coord_RectToScreen(wimp_rect *rect, convert_block *convert)
  24. {
  25.   Coord_PointToScreen(&rect->min, convert);
  26.   Coord_PointToScreen(&rect->max, convert);
  27. }
  28.